home *** CD-ROM | disk | FTP | other *** search
/ Sun Solutions 1997 April to September / Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso / products / Software_Research / Web / action.java next >
Text File  |  1996-03-22  |  173b  |  11 lines

  1. public boolean action(Event event, Object arg)
  2. {
  3.     if (acceptingInput) {
  4.         processInput(text.getText());
  5.     } else {
  6.         prepareForInput();
  7.     }
  8.     text.setText("");
  9.     return true;
  10. }
  11.